home *** CD-ROM | disk | FTP | other *** search
/ Shareware Games Galore! / Shareware Games Galore!.iso / arcade / corewars / revolve.rdc < prev    next >
Text File  |  1989-04-28  |  339b  |  17 lines

  1. ; REVOLVE - a small test program to see if the
  2. ; 16-character labels work and also the new
  3. ; EQU directive.
  4. ;
  5. magic        equ    12345
  6. faraway        equ    100
  7. ;
  8. bombvalue    spl    bombvalue
  9. destination    dat    -1
  10. start        mov    signature, faraway
  11. loop        mov    bombvalue, @destination
  12.         cmp    signature, <destination
  13.         jmp    loop
  14. signature    dat    magic
  15. ;
  16.         end
  17.